home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DC Comics 2.0
/
DC Collected Edi.iso
/
mac
/
collect
/
collectMenu.js
next >
Wrap
Text File
|
2002-11-21
|
1KB
|
22 lines
function menuHandler(){
var URL = document.collectMenu.category.options[document.collectMenu.category.selectedIndex].value;
window.location.href = URL;
}
document.write('<form name="collectMenu">');
document.write('<select name="category" size=1>');
document.write('<option value="../popular/popularlist.html">MOST POPULAR');
document.write('<option value="../dcuniverse/dcuniverselist.html">DC UNIVERSE');
document.write('<option value="../batman/batmanlist.html">BATMAN');
document.write('<option value="../superman/supermanlist.html">SUPERMAN');
document.write('<option value="../archive/archivelist.html">ARCHIVE EDITIONS');
document.write('<option value="../mad/madlist.html">MAD');
document.write('<option value="../wildstorm/wildstormlist.html">WILDSTORM');
document.write('<option value="../vertigo/vertigolist.html">VERTIGO');
document.write('<option value="../eisner/eisnerlist.html">WILL EISNER LIBRARY');
document.write('<option value="../other/otherlist.html">OTHER');
document.write('<option value="">----------');
document.write('<option value="http://www.dccomics.com/directcurrents/collect/main.html">MAIN MENU');
document.write('</select>');
document.write('<input type=button value="GO!" onClick="javascript:menuHandler()">');
document.write('</form>');